Nexa Wall Street Columns Raw Data, Low Resolution vs High Resolution, NData

Here we compare how well the LDA classifier works for both low resolution and high resolution classification when we change the size lag of the code


In [1]:
import numpy as np
from sklearn import cross_validation
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis as LDA
import h5py

import matplotlib
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

import sys
sys.path.append("../")
from aux.raw_images_columns_functions import extract_column_data, extract_letters_to_columns

In [ ]: